Trait isotope::ast::ToAst[][src]

pub trait ToAst {
    fn to_raw_ast_in(
        &self,
        ctx: &mut impl ToAstCtx + ?Sized
    ) -> Result<Expr, Error>; }
Expand description

A term which can be convered to an AST in a given context

Required methods

Recursively convert this term to an AST in a given context, without it’s annotation

Implementors